c# iterate over a dictionary

42

c# iterate over a dictionary -

foreach(KeyValuePair<string, string> entry in myDictionary)
{
    // do something with entry.Value or entry.Key
}

Comments

Submit
0 Comments